home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 019a / ee16.zip / EE.DOC < prev   
Text File  |  1990-04-09  |  7KB  |  158 lines

  1.  
  2.  
  3.                               EASY-EDIT  v. 1.6
  4.  
  5.  
  6.  | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
  7.  |                                                                             |
  8.  |    -  This is a simple editor released in the public domain.                |
  9.  |                                                                             |
  10.  |    -  It produces ASCII files.   ( control characters allowed )             |
  11.  |                                                                             |
  12.  |    -  Only files which are 80 characters wide are currently supported.      |
  13.  |                                                                             |
  14.  |    -  (* written in Turbo Pascal with assembly language subroutines for     |
  15.  |          fast screen updates *)                                             |
  16.  |                                                                             |
  17.  | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
  18.  
  19.  
  20.  
  21.          I have included the following files on this diskette :
  22.  
  23.  
  24.       + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  25.       +                                                             +
  26.       +  - EE.COM         ( the executable version of EASY-EDIT )   +
  27.       +                                                             +
  28.       +  - EE.DOC         ( this documentation file             )   +
  29.       +                                                             +
  30.       + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  31.  
  32.  
  33.          Hardware requirements :
  34.          ~~~~~~~~~~~~~~~~~~~~~
  35.  
  36.                - IBM PC or compatible, 320 K RAM.
  37.                - MS/PC-DOS 2.0 or greater.
  38.                - One disk drive.
  39.  
  40.  
  41.          You should format a new diskette with the format/s command
  42.          and copy these three files on it. There will be enough room
  43.          on the diskette to hold your documents. However, if you want
  44.          EASY-EDIT to load and save from/to another drive, simply
  45.          enter the new drive or directory following "EE" on the DOS
  46.          command line.   ( examples:  EE B: ,  EE B:\MYSUBD )
  47.  
  48.          Also, you can specify the name of an existing file on the
  49.          command line. The file will then be loaded at start-up.
  50.  
  51.  
  52.          Editing commands :
  53.          ~~~~~~~~~~~~~~~~
  54.  
  55.          Note : When editing a file, you can press F1 to display a summary
  56.                 of the editing commands.
  57.  
  58.          EASY-EDIT implements the following command set :
  59.  
  60.  
  61.          - left arrow              - right arrow
  62.          - up arrow                - down arrow
  63.  
  64.          - Ins   ( toggle between insert and overwrite modes )
  65.          - Del   ( delete the character at the cursor position )
  66.          - Backspace  ( delete character before cursor and move it one
  67.                         space to the left )
  68.  
  69.          - Ctrl-T     ( move cursor to top of screen )
  70.          - Ctrl-B     ( move cursor to bottom of screen )
  71.  
  72.          - Ctrl-W     ( scroll up one line towards beginning of the file )
  73.          - Ctrl-Z     ( scroll down one line towards the end of the file )
  74.  
  75.          - PgUp       ( move through file one screen up )
  76.          - PgDn       ( move through file one screen down )
  77.  
  78.          - Ctrl-PgUp    ( move cursor to the beginning of the file )
  79.          - Ctrl-PgDn    ( move cursor to the end of the file       )
  80.  
  81.          - home         ( move cursor to the beginning of the line )
  82.          - end          ( move cursor to the end of the line       )
  83.  
  84.          - Tab          ( move cursor right to the next tab position )
  85.          - Shift-tab    ( move cursor left to the next tab position  )
  86.  
  87.          - Ctrl-L       ( delete the line at the cursor position )
  88.          - Ctrl-N       ( insert a line at the cursor position )
  89.  
  90.          - Ctrl-P       ( instruct EASY-EDIT to treat the following character
  91.                           as a literal : use this to enter ASCII 1-31 )
  92.  
  93.          - Return       ( go back to the beginning of the following line )
  94.  
  95.          - F5           ( hide / unhide cursor )
  96.          - F9           ( toggle clock display on/off )
  97.  
  98.  
  99.           Printing :
  100.           ~~~~~~~~
  101.  
  102.            - Only parallel printers are supported.  ( [PRN]/lpt1: ).
  103.  
  104.              WARNING : An attempt to use the "Print work" function with
  105.                        a printer attached to a port other than lpt1: can
  106.                        cause the computer to lock up !!!
  107.  
  108.            - If you are using a printer which is not IBM ProPrinter compa-
  109.              tible, you should create a file called "PRINTER.DEF" containing
  110.              the ASCII codes to switch the Near Letter Quality mode (NLQ)
  111.              on and off.  This file will contain three lines.
  112.                        Write the name of your printer on the FIRST line
  113.              of the file.  The SECOND line should contains the ascii codes
  114.              to switch your printer to NLQ mode.  On the THIRD line, write
  115.              the codes to switch back to normal (draft) mode. Do not forget
  116.              to put a blank space between the codes.
  117.                        Here is an example of a printer definition file :
  118. < beginning of file >
  119. Panasonic KX-P1077
  120. 27 55 66
  121. 27 32
  122. < end of file >
  123.  
  124.              Note that if EASY-EDIT does not find this file in the same
  125.              directory as "EE.COM", only the IBM ProPrinter option will
  126.              be available at printing time.
  127.  
  128.                                  When you choose the print option you
  129.              will be prompted for the top and bottom margins and also the
  130.              page length. For normal 8 1/2 x 11 paper, enter 6 for the
  131.              top and bottom margins, and 66 for the page length. These
  132.              values are default. If they suit your needs,  just press
  133.              < RETURN >.
  134.  
  135.  
  136.          Limitations :
  137.          ~~~~~~~~~~~
  138.  
  139.          - Be aware of the fact that EASY-EDIT supports files with lines
  140.          of 80 characters maximum. Therefore, if you try to load a file
  141.          that has lines longer than 80 characters, they will be truncated.
  142.  
  143.          - The maximum number of lines of the file is 2000.
  144.  
  145.  
  146.          Feel free to send me comments, good or bad.
  147.  
  148.                    ________________________________________________
  149.  
  150.  
  151.          Guy Lachance
  152.  
  153.          215-C Mulberry,
  154.          El Paso, TX 79932.
  155.  
  156.          Compuserve : [71460,3407].
  157.  
  158.          ( 04/90.)